Hello,


I am currently struggeling with what is the best way to pass slots from the outer class to a class instance within it.
My problem is, that i have plenty of signals beeing emmitted by the inner class and it is quite easy to pass the signals on,
but how do i handle the slots? Is there any good way to pass them on, without having to do the following:

Qt Code:
  1. //Slot in the outer class
  2. void outerClass::someSlot()
  3. {
  4. myInnerClass->someSlot();
  5. }
To copy to clipboard, switch view to plain text mode 

Thank you in advance.